If you want to help me compile these for carbon let me know.

vbDateTimeLib.ppc
	Now() as integer
	Second(time as integer) as integer
	Minute(time as integer) as integer
	Day(time as integer) as integer
	Month(time as integer) as integer
	MonthName(month as integer) as string	
	Hour(time as integer) as integer
	Weekday(time as integer) as integer
	WeekdayName(day as integer) as string
	Timer() as integer

vbGlobalLib.ppc

	Methods:
	
		DialogBox(prompt as string,buttons as Integer) as integer
			DialogBox kinds of mimics msgbox functions, only with two parameters
			use the constants provided bellow like "vbInformation + vbYesNo", DialogBox uses
			ALRT resources that you may modify using ResEdit.
			
		space(n as Integer) as String //returns n spaces
		ucase(s as String) as String
		lcase(s as String) as String
		
	Constants:
	
	vbNullChar
	vbNullString (an empty string)
	vbTab	( as string, chr(9) )
	
	vbCFText (4 character code for mac resource type equivalents, use with clipboard or drag&drop)
	vbCFBitmap
	vbCFRTF
	
	vbAlignLeft (mapped to rb values)
	vbAlignRight
	vbAlignCenter
	
	vbLeftJustify (mapped to rb values)
	vbRightJustify
	vbAlignCenter
	
	
	
	vbOk (use with DialogBox)
	vbCancel
	vbAbort
	vbYes
	vbRetry
	vbNo
	vbIgnore
	
	
	vbOkOnly (use with DialogBox)
	vbOkCancel
	vbAbortRetryIgnore
	vbYesNoCancel
	vbYesNo
	vbRetryCancel
	
	vbCritical (use with DialogBox)
	vbQuestion
	vbExclamation
	vbInformation 
	
	vbBlack (as colors)
	vbBlue
	vbCyan
	vbGreen
	vbMagenta
	vbMagenta
	vbRed
	vbYellow
	vbWhite
	
	vbcrlf (as string chr(13) + chr(10))
	vbcr (as string chr(13))
	vblf (as string chr(10))
	
	vbKeyCancel (as integer, mapped to mac equivalents)
	vbKeyEnd
	vbKeyDelete
	vbKeyEscape
	vbKeyHome
	vbKeyReturn
	vbKeyInsert
	vbKeyExecute
	vbKeyTab
	vbKeySpace
	vbKeyBack
	vbKeySubtract
	vbKeyMultiply
	vbKeyDivide
	vbKeyDecimal
	vbKeyAdd
	vbKeyClear
	vbKeyPageDown
	vbKeyPageUp
	vbKeyUp
	vbKeyLeft
	vbKeyDown
	vbKeyRight
	
	vbFriday (as integer)
	vbSaturday
	vbMonday
	vbThursday
	vbSunday
	vbWednesday
	vbTuesday
